iT邦幫忙

0

(22)Python的基礎介紹和爬蟲

  • 分享至 

  • xImage
  •  

Python 實體物件的建立與使用(下)

類別的兩種用法
1.類別與類別屬性
2.類別與實體物件,實體屬性,實體方法

實體屬性
封裝在實體物件中的變數

實體方法
封裝在實體物件中的函式

基本語法
class 類別名稱:
#定義初始化函式
def init(self):
定義實體屬性
定義實體方法/函式
#建立實體物件放入變數obj中
obj=類別名稱()

class 類別名稱:
#定義初始化函式
def init(self):
定義實體屬性
def 方法名稱(self,更多自訂參數):
方法主體,透過self操作實體物件
#建立實體物件放入變數obj中
obj=類別名稱()

使用方法
基本語法
實體物件.實體方法的名稱(參數資料)

接下來為程式範例

https://ithelp.ithome.com.tw/upload/images/20221014/20152724TDGqPwHE6r.png

這樣就成功讀取到第一個檔案
https://ithelp.ithome.com.tw/upload/images/20221014/20152724xeZhRx36gV.png

也能夠一次讀取多個檔案
https://ithelp.ithome.com.tw/upload/images/20221014/20152724xD3XyHiLnO.png

參考來源:https://www.youtube.com/watch?v=MZtTClJ74NU&list=PL-g0fdC5RMboYEyt6QS2iLb_1m7QcgfHk&index=18


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言